ASP.Net Data
Start by leaving your cursor exactly where you want all your databinding code to appear. Under the ASP.Net menu, choose Data, and the DataSet. From there, you will see two choices -

SQL Client Connection/Adapter
OleDb Client Connection/Adapter

Naturally, if you are connecting to an MS Access Database, choose OleDb, but if you are using SQL Server, choose SQL. Whichever you choose, the SQL Statement Builder will appear. From there, you can choose the database, tables and SQL statement, very much like what happened with ASP Express when building a Classic ASP document. The main difference is that you will be prompted to enter the ASP.Net control where you want the data to be bound.

Your databinding code, including SQL Statement, along with your Import Namespace statements for the corresponding Data platform will be entered into the Open Document.

Here's a short scenario of steps in order to easily create a datagrid on your page, and the code necessary to bind a table to it so that it will load when the page loads. This demonstration uses VB. (naturally, it would be a little different if you are using the Code-behind method)

  1. Choose the DataGrid Assistant and insert a DataGrid into the Body of your open document
  2. Put your cursor somewhere between the HEAD Tags in your document.
  3. In the Express Toolbox Tags Tab - ASP.Net/Insert/Script, double click on the VB Header entry.
  4. Then in the Insert/Sub node, double click on the Page_Load (VB)
  5. Next, Click on the appropriate Data Connector/DataSet for your database (OleDb or SQL Server)
  6. Using the SQL Statement builder, navigate to your database table and create your SQL statement
  7. Once you are finished with your SQL Statement, click on the 'Finalize SQL' button.
  8. That's it! -- You're finished!